home *** CD-ROM | disk | FTP | other *** search
/ Macworld Expo - Develope…Central & Net Innovations / Developer Central and Net Innovators (MacWorld Expo) (January 1999).iso / Developer Central / Bowers Development / Demo AppMaker / Examples / C⁄C++ OS8 / LayerGroups / LayerGroupsDoc.h < prev    next >
Encoding:
Text File  |  1998-10-23  |  608 b   |  32 lines  |  [TEXT/CWIE]

  1. // LayerGroupsDoc.h -- document-level functions
  2.  
  3. #pragma once
  4.  
  5. #include "AMDoc.h"
  6.  
  7. class LayerGroupsEngine;
  8.  
  9. //----------
  10. class LayerGroupsDoc : public AMDoc {
  11. public:
  12.             LayerGroupsDoc ();
  13.     virtual ~LayerGroupsDoc ();
  14.  
  15. public:
  16.     virtual Boolean        DoCommand    (long        inCommand);
  17.  
  18. protected:
  19.     virtual void        OpenWindows ();
  20.     virtual Boolean        WouldCloseDoc    (WindowPtr        windPtr);
  21.  
  22.     virtual LayerGroupsEngine*    GetEngine ();
  23.  
  24.     virtual void    DoInvokeAbout ();
  25.     virtual void    DoShowEditFields ();
  26.  
  27. public:        // later - will be protected:
  28.     WindowPtr        mTabPanelPtr;
  29.     WindowPtr        mPopupGroupBoxPtr;
  30.     WindowPtr        mListboxPtr;
  31. };
  32.